Select the odd items of a listΒΆ

Select the odd items of a list.
x = [1, 2, 3, 4, 5, 6, 7, 8, 9]

print(x[::2])    # [1, 3, 5, 7, 9]